@import url(var.css);
.detail input {
  border: none;
  outline: none;
  /* 去除默认的聚焦边框 */
}
.detail input:-internal-autofill-selected {
  background-color: #fff;
}
.detail textarea {
  border: none;
  outline: none;
  /* 去除默认的聚焦边框 */
}
.detail .detail_header {
  position: relative;
  color: white;
  text-align: center;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}
.detail .detail_header .header_banner {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail .detail_header .header_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 44;
}
.detail .detail_header .header_content .header_title {
  font-size: 44px;
}
.detail .detail_header .header_content .header_subtitle {
  font-size: 18px;
  margin: 30px 0;
  font-weight: 500;
}
.detail .detail_header .header_content .header_btn {
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  border: 1px solid white;
  width: 200px;
  height: 60px;
  line-height: 60px;
  position: relative;
  transition: var(--primary-transition);
  cursor: pointer;
}
.detail .detail_header .header_content .header_btn:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  background-color: white;
  z-index: -1;
  transition: var(--primary-transition);
  top: 0;
  left: 0;
}
.detail .detail_header .header_content .header_btn:hover {
  color: var(--primary-color);
}
.detail .detail_header .header_content .header_btn:hover:after {
  width: 100%;
}
.detail .detail_introduce {
  padding: 120px 0;
  font-size: 14px;
}
.detail .detail_introduce .introduce_content {
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}
.detail .detail_introduce .introduce_content .introduce_left {
  padding: 0 106px;
  width: 270px;
  height: 93px;
}
.detail .detail_introduce .introduce_content .introduce_left img {
  width: 100%;
  height: 100%;
}
.detail .detail_introduce .introduce_content .introduce_right :first-child {
  color: #261f1e;
  font-size: 22px;
  padding-bottom: 30px;
}
.detail .detail_introduce .introduce_content .introduce_right :last-child {
  font-size: 14px;
  color: #736d6d;
  line-height: 1.5em;
}
.detail .detail_introduce .introduce_text {
  padding-top: 50px;
  border-top: 1px solid #dcdddd;
}
.detail .detail_introduce .introduce_text .text {
  position: relative;
  padding: 0 40px;
}
.detail .detail_introduce .introduce_text .text .icon_left_phone,
.detail .detail_introduce .introduce_text .text .icon_right_phone {
  display: none;
}
.detail .detail_introduce .introduce_text .text .icon_left,
.detail .detail_introduce .introduce_text .text .icon_right {
  position: absolute;
}
.detail .detail_introduce .introduce_text .text .icon_left {
  top: 0;
  left: 0;
}
.detail .detail_introduce .introduce_text .text .icon_right {
  bottom: 0;
  right: 0;
}
.detail .detail_introduce .text_name {
  text-align: right;
  margin-top: 30px;
}
.detail .detail_result {
  background-color: #f2f2f2;
  padding: 70px 0;
}
.detail .detail_result .w_1400 {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.detail .detail_result .w_1400 .result_detail .subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.detail .detail_result .w_1400 .result_detail .result_content .result_name {
  font-size: 18px;
  font-weight: 700;
}
.detail .detail_result .w_1400 .result_detail .result_content .result_list {
  padding-left: 50px;
  margin-top: 30px;
  margin-bottom: 90px;
}
.detail .detail_result .w_1400 .result_detail .result_content .result_list li {
  list-style: disc;
  line-height: 40px;
  font-size: 14px;
}
.detail .detail_result .w_1400 .related_products {
  box-sizing: border-box;
  background-color: white;
  width: 471px;
  height: fit-content;
  padding: 35px 40px;
}
.detail .detail_result .w_1400 .related_products .subtitle {
  font-size: 24px;
  font-weight: bold;
}
.detail .detail_result .w_1400 .related_products .related_products_list {
  margin-top: 20px;
}
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_name {
  font-size: 22px;
  margin-bottom: 5px;
}
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_dsc {
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 14px;
  color: #898989;
}
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_btn {
  display: block;
  margin-top: 15px;
  color: #a4a4a4;
  font-size: 14px;
  width: 130px;
  height: 38px;
  border: 1px #a4a4a4 solid;
  text-align: center;
  line-height: 38px;
  position: relative;
  transition: var(--primary-transition);
  cursor: pointer;
  z-index: 0;
}
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_btn:before {
  content: "";
  background: var(--primary-color);
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  z-index: -1;
  left: 0;
  transition: var(--primary-transition);
}
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_btn:hover {
  color: white;
  border-color: var(--primary-color);
}
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_btn:hover:before {
  width: 100%;
}
.detail .detail_result .w_1400 .related_products .related_products_list_phone {
  display: none;
}
.detail .detail_solution {
  width: 100%;
  aspect-ratio: 5/1;
  position: relative;
  overflow: hidden;
}
.detail .detail_solution .solution_bac {
  position: absolute;
  z-index: -1;
}
.detail .detail_solution .solution_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.detail .detail_solution .solution_content .content_title {
  font-size: 24px;
}
.detail .detail_solution .solution_content .content_subtitle {
  font-size: 14px;
  padding-top: 20px;
}
.detail .detail_solution .solution_content .content_split {
  width: 50px;
  height: 2px;
  margin: 40px auto;
  background-color: white;
  box-sizing: content-box;
}
.detail .detail_solution .solution_content .content_contact {
  font-size: 36px;
}
@media screen and (max-width: 680px) {
  .detail {
    width: 100%;
  }
  .detail .detail_header {
    width: 100%;
    height: 375px;
    overflow: hidden;
    padding-top: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .detail .detail_header .header_banner {
    object-position: 70% 20%;
  }
  .detail .detail_header .header_content {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
  }
  .detail .detail_header .header_content .header_title {
    font-size: 27px;
  }
  .detail .detail_header .header_content .header_subtitle {
    font-size: 17px;
    
    font-weight: 500;
    margin: 10px 0;
  }
  .detail .detail_header .header_content .header_btn {
    width: 110px;
    height: 30px;
    background-color: white;
    line-height: 30px;
    color: var(--primary-color);
    font-size: 13.5px;
  }
  .detail .detail_introduce {
    margin-top: 40px;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .detail .detail_introduce .introduce_content {
    width: 100%;
    flex-direction: column;
    border: none;
    padding: 0;
    margin: 0;
  }
  .detail .detail_introduce .introduce_content .introduce_left {
    width: 218px;
    height: 75px;
    padding: 0;
  }
  .detail .detail_introduce .introduce_content .introduce_right {
    width: 100%;
    overflow: hidden;
  }
  .detail .detail_introduce .introduce_content .introduce_right :first-child {
    color: #261f1e;
    font-size: 16.6px;
    text-align: center;
    padding: 10px 0;
  }
  .detail .detail_introduce .introduce_content .introduce_right :last-child {
    font-size: 13.5px;
    color: #736d6d;
  }
  .detail .detail_introduce .introduce_text {
    width: 100%;
    padding: 0;
    margin-top: 10px;
    background-color: #f2f2f2;
    padding: 15px;
    box-sizing: border-box;
    border-left: 2px var(--primary-color) solid;
  }
  .detail .detail_introduce .introduce_text .text {
    padding: 0;
  }
  .detail .detail_introduce .introduce_text .text p {
    font-size: 13.5px;
    line-height: 1.5rem;
    color: #261f1e;
  }
  .detail .detail_introduce .introduce_text .text .icon_left,
  .detail .detail_introduce .introduce_text .text .icon_right {
    display: none;
  }
  .detail .detail_introduce .introduce_text .text .icon_left_phone,
  .detail .detail_introduce .introduce_text .text .icon_right_phone {
    display: block;
  }
  .detail .detail_introduce .introduce_text .text .phone_icon {
    display: flex;
    justify-content: right;
  }
  .detail .detail_result {
    background-color: white;
    padding: 0;
    margin-top: 40px;
  }
  .detail .detail_result .w_1400 {
    width: 100%;
    flex-direction: column;
  }
  .detail .detail_result .w_1400 .result_detail {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .detail .detail_result .w_1400 .result_detail .subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .detail .detail_result .w_1400 .result_detail .result_content .result_name {
    font-size: 18px;
    font-weight: 700;
  }
  .detail .detail_result .w_1400 .result_detail .result_content .result_list {
    padding-left: 20px;
    margin-top: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .detail .detail_result .w_1400 .result_detail .result_content .result_list li {
    list-style: disc;
    line-height: 30px;
    font-size: 14px;
  }
  .detail .detail_result .w_1400 .related_products {
    background-color: #f2f2f2;
    width: 100%;
    padding: 0;
    padding: 16px;
  }
  .detail .detail_result .w_1400 .related_products .subtitle {
    font-size: 20px;
  }
  .detail .detail_result .w_1400 .related_products .related_products_list {
    display: blobk;
  }
  .detail .detail_result .w_1400 .related_products .related_products_list_phone {
    display: block;
  }
  .detail .detail_result .w_1400 .related_products .related_products_list_phone .related_products_item {
    display: flex;
    height: 53px;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
  }
  .detail .detail_solution {
    width: 100%;
    aspect-ratio: unset;
    height: 234px;
  }
  .detail .detail_solution .solution_content {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  .detail .detail_solution .solution_content .content_title {
    font-size: 16.6px;
  }
  .detail .detail_solution .solution_content .content_subtitle {
    font-size: 14.5px;
    padding-top: 20px;
  }
  .detail .detail_solution .solution_content .content_split {
    width: 30px;
    height: 2px;
    margin: 10px auto;
    background-color: white;
    box-sizing: content-box;
  }
  .detail .detail_solution .solution_content .content_contact {
    font-size: 20.8px;
  }
}
/*
修改了，css 之后覆盖less
*/
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_name {
  color: #000;
}
.detail .detail_result .w_1400 .related_products .related_products_list .related_products_item p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #898989;
}
.detail .detail_result .w_1400 .result_detail {
  flex: 1;
  padding-right: 50px;
}
.detail .detail_result .w_1400 .result_detail p {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.8;
}
.detail .detail_result .w_1400 .result_detail p > strong {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.detail .detail_result .w_1400 .result_detail .wp-block-list {
  padding-left: 25px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.detail .detail_result .w_1400 .result_detail ul li {
  list-style: disc;
  line-height: 40px;
}
.detail .detail_result .w_1400 .result_detail ol li {
  line-height: 40px;
  font-size: 14px;
}
.detail .detail_introduce .introduce_content .introduce_right {
  flex: 1;
}
.mo_item_btn {
  display: none;
}
@media screen and (max-width: 680px) {
  .detail .detail_result .w_1400 .related_products .related_products_list .related_products_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 0.75em;
    margin-bottom: 1.5rem;
  }
  .detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_btn {
    margin-top: 0;
  }
  .related_products_item p {
    display: none !important;
  }
  .detail .detail_result .w_1400 .related_products .related_products_list .related_products_item .item_btn {
    display: none !important;
  }
  .related_products_item .item_name {
    display: block !important;
    font-size: 18px !important;
    width: 75%;
    display: block !important;
    white-space: nowrap;      /* 强制文本在一行显示 */
    overflow: hidden;         /* 隐藏超出部分 */
    text-overflow: ellipsis; 
  }
  .mo_item_btn {
    position: relative;
    display: block !important;
    width: 100%;
    height: 20px;
  }
  .mo_item_btn img {
    position: absolute;
    right: 22px;
    width: 20px;
    height: 20px;
  }
  .detail .detail_result .w_1400 .result_detail {
    padding-right: 20px;
  }
  .detail .detail_result .w_1400 .result_detail p > strong {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .detail .detail_result .w_1400 .result_detail ul li {
    margin-top: 0.75em;
    line-height: 1.8;
    font-size: 14px;
  }
  .detail .detail_result .w_1400 .result_detail p {
    margin: 0 0 20px;
    padding: 0;
    line-height: 1.8;
    font-size: 14px;
  }
  .detail .detail_result .w_1400 .result_detail .wp-block-list {
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-right: 16px;
  }
}
.detail .detail_header .header_content .header_btn {
  margin-top: 15px;
}
